home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
SGI Hot Mix 17
/
Hot Mix 17.iso
/
HM17_SGI
/
html
/
vendors
/
adobe
/
software
/
Launchpho.csh
< prev
next >
Wrap
Linux/UNIX/POSIX Shell Script
|
1997-06-17
|
559b
|
16 lines
#!/bin/csh -f
setenv INSTALL_FROM_DIR $HOTMIXDIR/html/vendors/adobe/software
if ( -e /usr/bin/photoshop && -e /usr/adobe/Photoshop_3.0.1) then
xwsh -bg royalblue -fg white \
-geom 80x30+100+100 -cursorfg violetred1 \
-cursorbg violetred1 -title "Launching Adobe Photoshop 3.0.1 " \
-e /bin/csh -c "cd $INSTALL_FROM_DIR; ./launchpho.csh"
else
xwsh -bg royalblue -fg white \
-geom 80x30+100+100 -cursorfg violetred1 \
-cursorbg violetred1 -title "Adobe Photoshop 3.0.1 is not installed " \
-e /bin/csh -c "cd $INSTALL_FROM_DIR; ./launchpho3.csh"
endif